home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / gfx / edit / VE-merge.lha / notes / Merge.notes
Encoding:
Text File  |  1999-07-16  |  1.9 KB  |  89 lines

  1.  
  2. Visual Engineering - Merge v2.00
  3. --------------------------------
  4.  
  5. This script merges two pictures with adjustable horizontal and
  6. vertical aligns.
  7.  
  8.  
  9. Mark picture to be merged as SECONDARY.
  10. As always, I'm sure you understand how does it work, yourself.
  11.  
  12.  
  13.  
  14. You can call this script from your own scripts, too.
  15.  
  16.  
  17.   address command "rexx:rx ie:arexx/Merge.rexx" <pic> <sec> <valign> <halign> <xoffset> <yoffset>
  18.  
  19.   - <pic>     picture to merge to
  20.   - <sec>     picture to merge
  21.   - <valign>  vertical align (ABOVE,TOP,ABSMIDDLE,BOTTOM,BELOW)
  22.   - <halign>  horizontal align (LEFTSIDE,LEFT,CENTER,RIGHT,RIGHTSIDE)
  23.   - <xoffset> finetune for horizontal alignment
  24.   - <yoffset> finetune for vertical alignment
  25.  
  26.  
  27.  
  28.   Next lines return you the name of this new picture.
  29.  
  30.   PROJECT_LIST
  31.   xyz=result
  32.   pic=subword(xyz,1,1)
  33.  
  34.  
  35.  
  36.  
  37.   Example:
  38.  
  39.   rx ie:arexx/Merge.rexx C2.iff 000_C2.iff ABOVE LEFTSIDE 0 0
  40.  
  41.  
  42.  
  43. HISTORY
  44.  
  45.  2.00
  46.  
  47.   Fully recoded. Now can be aligned horizontally and vertically
  48.   with optional offset. Possible aligns are now ABOVE, TOP,
  49.   ABSMIDDLE, BOTTOM, BELOW and LEFTSIDE, LEFT, CENTER, RIGHT,
  50.   RIGHTSIDE.
  51.  
  52.  1.00
  53.  
  54.   History started
  55.  
  56.  
  57.  
  58.  
  59.  
  60. The archive, where this file came from, can be distributed using
  61. any kind of media (CD, Email, Net, BBS, FTP...), but contents of
  62. original archive must not be seperated from each other.
  63.  
  64. You may modify the script for your own use, but don't except me to
  65. fix it, when you broke it. You may NOT spread modified versions of
  66. the script, nor part of it.
  67.  
  68. If you are going to spread a script of yours, which calls one of
  69. Visual Engineering -scripts, you must include either to
  70. documentfile of your script or header of the script itself, Visual
  71. Engineering -websiteaddress and author's name and email address.
  72.  
  73. Like this:
  74.  
  75.  
  76. /*
  77.  
  78.  This script uses Visual Engineering -script(s):
  79.  AddSpace.rexx, PrimaryColors.rexx
  80.  
  81.  By Marko Seppänen <marko.seppanen@wwnet.fi>
  82.  
  83.  Visual Engineering website:
  84.  http://wwnet.fi/users/smarko/visual/
  85.  
  86.  */
  87.  
  88.  
  89.